:root{
      --bg: #0F0F0F;
      --bg2:#1A1A1A;
      --text:#EAEAEA;
      --muted:#B0B0B0;
      --gold:#F5C518;
    }

    *{
      box-sizing:border-box;
      margin:0;
      padding:0;
    }

    body{
      background: var(--bg);
      color: var(--text);
      font-family: system-ui, sans-serif;
    }

    /* NAVBAR */
    .navbar{
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(15,15,15,0.95);
      border-bottom: 1px solid var(--bg2);
      padding: 20px 24px;
    }

    .nav-container{
      width: 100%;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .brand{
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text);
      font-weight: 700;
    }

    .brand-badge{
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--gold), #caa10f);
      display: grid;
      place-items: center;
      color: #111;
      font-weight: 900;
    }

    .nav-links{
      list-style: none;
      display: flex;
      gap: 18px;
    }

    .nav-links a{
      color: var(--muted);
      text-decoration: none;
      font-weight: 600;
      padding: 10px 14px;
      border-radius: 8px;
      transition: 0.2s;
      font-size: 1.1rem;
    }

    .nav-links a:hover{
      color: var(--text);
      background: rgba(245,197,24,0.08);
    }

    /* SLIDER */
    .slider-wrapper{
      position: relative;
      display: flex;
      justify-content: center;
      margin: 40px 0 80px;
    }

    .slider-container{
      width: 70%;
      max-width: 1200px;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 18px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.6);
      position: relative;
    }

    .carousel,
    .carousel-inner,
    .carousel-item{
      height: 100%;
    }

    .carousel-item img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slider-text-box {
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0,0,0,0.6); 
      border-radius: 18px;
      padding: 20px 30px;
      text-align: center;
      color: var(--gold);
      max-width: 80%;
      box-shadow: 0 12px 35px rgba(0,0,0,0.55);
      backdrop-filter: blur(6px);
    }

    .slider-text-box b {
      display: block;
      font-size: 1.2rem;
      margin-bottom: 5px;
    }
    .slider-text-box p {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0;
    }

    .carousel-control-prev,
    .carousel-control-next{
      width: 5%;
    }

    /* CARDS */
    .custom-card{
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(245,197,24,0.2);
      border-radius: 16px;
      color: var(--text);
      transition: 0.3s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      height: 100%;
    }

    .custom-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    }

    .custom-card img{
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .custom-card .card-body{
      margin-top: auto;
      text-align: center;
    }

    /* YAZI BOX */
    .yazı-box{
      max-width: 900px;
      margin: 50px auto;
      background: rgba(255,255,255,0.03);
      border-radius: 18px;
      border: 1px solid rgba(245,197,24,0.18);
      padding: 30px 40px;
      text-align: center;
      color: var(--gold);
      box-shadow: 0 12px 35px rgba(0,0,0,0.55);
      backdrop-filter: blur(6px);
    }

    .yazı-box .social-icons{
      margin-bottom: 20px;
    }

    .yazı-box .social-icons a{
      color: var(--gold);
      font-size: 1.5rem;
      margin: 0 10px;
      transition: 0.3s;
    }

    .yazı-box .social-icons a:hover{
      color: #FFD84D;
    }

    /* MEDIA QUERIES */
    @media (max-width: 768px){
      .slider-container{ width: 90%; }
      .yazı-box{ padding: 22px; }
      .slider-text-box{ 
        padding: 18px 25px; 
        bottom: -10px;
      }
      .nav-container{
        flex-wrap: wrap;
        row-gap: 12px;
      }

      .nav-links{
        flex-wrap: wrap;
        justify-content: center;
      }

      .nav-links a{
        font-size: 1rem;
        padding: 8px 10px;
      }
    }

    .dropdown-menu{
      background:#111;
      border:1px solid rgba(245,197,24,0.25);
      border-radius:12px;
    }

    .dropdown-item{
      color:var(--muted);
      font-weight:600;
    }

    .dropdown-item:hover{
      background:rgba(245,197,24,0.15);
      color:var(--gold);
    }

    .navbar-toggler-icon{
      filter: invert(1);
    }

    @media (max-width: 576px) {
      .slider-text-box {
        padding: 12px 15px;
        font-size: 0.85rem;
        bottom: 10px;
      }
      .custom-card .card-body p {
        font-size: 0.85rem;
      }
      .custom-card .oyazı {
        font-size: 1rem;
      }
      .yazı-box {
        padding: 20px 15px;
        font-size: 0.9rem;
      }
      .yazı-box .social-icons a {
        font-size: 1.2rem;
        margin: 0 6px;
      }
    }
    /* Yazı-box linkleri temaya uygun hale getirildi */
.yazı-box .yazı-link {
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s;
}

.yazı-box .yazı-link:hover {
  color: #FFD84D;
  text-decoration: underline;
}